Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Overridable Function GetProperties( _
ByVal context As System.ComponentModel.ITypeDescriptorContext, _
ByVal value As System.Object, _
ByVal attributes() As System.Attribute _
) As System.ComponentModel.PropertyDescriptorCollection |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebSchedulerDateTimeConverter
Dim context As System.ComponentModel.ITypeDescriptorContext
Dim value As System.Object
Dim attributes() As System.Attribute
Dim value As System.ComponentModel.PropertyDescriptorCollection
value = instance.GetProperties(context, value, attributes) |
C# | |
---|
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(
System.ComponentModel.ITypeDescriptorContext context,
System.object value,
System.Attribute[] attributes
) |
Delphi | |
---|
public function GetProperties(
context: System.ComponentModel.ITypeDescriptorContext;
value: System.TObject;
attributes: System.Attributearray of
): System.ComponentModel.PropertyDescriptorCollection; virtual; |
JScript | |
---|
public function GetProperties(
context : System.ComponentModel.ITypeDescriptorContext,
value : System.Object,
attributes : System.Attribute[]
) : System.ComponentModel.PropertyDescriptorCollection; |
Managed Extensions for C++ | |
---|
public: virtual System.ComponentModel.PropertyDescriptorCollection* GetProperties(
System.ComponentModel.ITypeDescriptorContext* context,
System.Object* value,
System.Attribute*[]* attributes
) |
C++/CLI | |
---|
public:
virtual System.ComponentModel.PropertyDescriptorCollection^ GetProperties(
System.ComponentModel.ITypeDescriptorContext^ context,
System.Object^ value,
System.array<Attribute^>^ attributes
) |
Parameters
- context
- value
- attributes
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also